home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 3 / CU Amiga Magazine's Super CD-ROM 03 (1996)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1996-09].iso / support / superviewcd / superviewlibrary / packersupport / unpack-svobject / install_unpack.script < prev    next >
Text File  |  1996-01-29  |  589b  |  24 lines

  1. ; $VER: Install_UnpackObject.script V2.2 (16.7.95)
  2. ; © 1994-95 by Andreas R. Kleinert.
  3. ; This is the Installer Script for my Unpack-SVObject
  4.  
  5. (set svlibdir
  6.             (askdir
  7.                    (prompt "Library Path")
  8.                    (help @askdir-help)
  9.                    (newpath)
  10.                    (default "LIBS:")
  11.             )
  12. )
  13.  
  14. (makedir (tackon svlibdir "svobjects"))
  15.  
  16. (copyfiles
  17.   (prompt "Installing FastILBM24.svobject to LIBS:svobjects ...")
  18.   (help @copyfiles-help)
  19.   (source "libs/svobjects")
  20.   (dest (tackon svlibdir "svobjects"))
  21.   (pattern "#?.svobject")
  22.   (files)
  23. )
  24.